home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / PROLOG / HUMBOLT / HUMBOLTS / _files / _humboltsr / WINDOW._h < prev    next >
Text File  |  1990-05-14  |  2KB  |  46 lines

  1. /***************************************************
  2. ****************************************************
  3. **                                                **
  4. **  HU-Prolog     Portable Interpreter System     **
  5. **                                                **
  6. **  Release 1.62   January  1990                  **
  7. **                                                **
  8. **  Authors    C.Horn, M.Dziadzka, M.Horn      **
  9. **                                                **
  10. **  (C) 1989      Humboldt-University             **
  11. **                Department of Mathematics       **
  12. **                GDR 1086 Berlin, P.O.Box 1297   **
  13. **                                                **
  14. ****************************************************
  15. ***************************************************/
  16.  
  17.  
  18. /*
  19. **  includefile "window.h"
  20. **
  21. **  last edition: (md) 11.10.89
  22. */
  23.  
  24. #define WIN        int
  25. #define STDWIN     ((int)0)
  26. #define NOWINDOW   ((int)-1)
  27.  
  28. #define REVERSE    ((byte)0x01)
  29. #define UNDERLINE  ((byte)0x02)
  30. #define BLINK      ((byte)0x04)
  31. #define BOLD       ((byte)0x08)
  32. #define NORMAL     ((byte)0x00)
  33.  
  34. extern WIN w_create(/* byte x,y,xl,yl ; char *name ; byte attr */);
  35. extern void w_remove(/* WIN w */);
  36. extern void w_up(/* WIN w */);
  37. extern void w_puts(/* WIN w ; char *str */);
  38. extern int  w_gets(/* WIN w ; char *buf ; int maxlen */);
  39. extern void w_cls(/* WIN w */);
  40. extern void w_gotoxy(/* WIN w ; byte xpos,ypos */);
  41. extern void w_scr_refresh();
  42. extern void w_init();
  43. extern void w_exit();
  44.  
  45.  
  46.